home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / toadfr12.zip / TEST.BAT < prev    next >
DOS Batch File  |  1991-04-26  |  285b  |  13 lines

  1. echo off
  2. rem Assumes drive C as default drive.  Parm %1 should be
  3. rem a quantity greater than, equal to, or less than
  4. rem the free space on drive C.
  5. rem
  6. toadfree C %1
  7. if errorlevel 1 goto next
  8. echo free space on disk >= %1
  9. goto end
  10. :next
  11. echo free space on disk < %1
  12. :end
  13.